home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / ANTENNA / YAGIU112 / NR_HACK.H < prev    next >
Text File  |  1995-08-07  |  739b  |  20 lines

  1. /* Here are the prototypes of the routines that are in the book 'Numerical
  2. recipes in C' by Press et al, 1992. All references to 'float' in that book 
  3. have been changed to 'double' here. Hence the definitions are not the same.
  4. ie a routine:
  5.                  void cisi(float x, float *ci, float *si);
  6.  
  7. has been changed to:
  8.  
  9.              void cisi(double x, double *ci, double *si);
  10.  
  11. Hence all the C routines used here *must* be converted to double. Please *dont*
  12. use the numerical recipes header file 'nr.h', use my 'nr_hacked.h' */
  13.  
  14.  
  15. void lubksb(double **a, int n, int *indx, double b[]); 
  16. void ludcmp(double **a, int n, int *indx, double *d); 
  17. void cisi(double x, double *ci, double *si); 
  18.  
  19. /* END OF NUMERICAL RECIPES ROUTINES */
  20.